home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / sbhc.c < prev    next >
C/C++ Source or Header  |  1996-02-27  |  7KB  |  270 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* sbhc.c */
  20. /* Bounded Huffman code filters */
  21. #include "memory_.h"
  22. #include "stdio_.h"
  23. #include "gdebug.h"
  24. #include "strimpl.h"
  25. #include "sbhc.h"
  26. #include "shcgen.h"
  27.  
  28. /* ------ BoundedHuffmanEncode ------ */
  29.  
  30. private_st_BHCE_state();
  31.  
  32. #define ss ((stream_BHCE_state *)st)
  33.  
  34. /* Initialize BoundedHuffmanEncode filter. */
  35. private int
  36. s_BHCE_reinit(stream_state *st)
  37. {    ss->encode.count = ss->definition.num_values;
  38.     s_bhce_init_inline(ss);
  39.     return 0;
  40. }
  41. private int
  42. s_BHCE_init(register stream_state *st)
  43. {    hce_code *encode = ss->encode.codes =
  44.       (hce_code *)gs_alloc_byte_array(st->memory,
  45.                         ss->definition.num_values,
  46.                       sizeof(hce_code), "BHCE encode");
  47.     if ( encode == 0 )
  48.       return ERRC;            /****** WRONG ******/
  49.     hc_make_encoding(encode, &ss->definition);
  50.     return s_BHCE_reinit(st);
  51. }
  52.  
  53. /* Release the filter. */
  54. private void
  55. s_BHCE_release(stream_state *st)
  56. {    gs_free_object(st->memory, ss->encode.codes, "BHCE encode");
  57. }
  58.  
  59. /* Process a buffer. */
  60. private int
  61. s_BHCE_process(stream_state *st, stream_cursor_read *pr,
  62.   stream_cursor_write *pw, bool last)
  63. {    const byte *p = pr->ptr;
  64.     const byte *rlimit = pr->limit;
  65.     byte *q = pw->ptr;
  66.     byte *wlimit = pw->limit - (hc_bits_size >> 3);
  67.     const hce_code *encode = ss->encode.codes;
  68.     uint num_values = ss->definition.num_values;
  69.     uint zero_runs = ss->EncodeZeroRuns;
  70.     uint zero_max = num_values - zero_runs + (ss->EndOfData ? 0 : 1);
  71.     uint zero_value = (zero_max > 1 ? 0 : 0x100);
  72.     int zeros = ss->zeros;
  73.     int status = 0;
  74.     hce_declare_state;
  75.  
  76.     hce_load_state();
  77.     while ( p < rlimit && q < wlimit )
  78.       {    uint value = *++p;
  79.         const hce_code *cp;
  80.         if ( value >= num_values )
  81.           {    status = ERRC;
  82.             break;
  83.           }
  84.         if ( value == zero_value )
  85.         {    /* Accumulate a run of zeros. */
  86.             ++zeros;
  87.             if ( zeros != zero_max )
  88.               continue;
  89.             /* We've scanned the longest run we can encode. */
  90.             cp = &encode[zeros - 2 + zero_runs];
  91.             zeros = 0;
  92.             hc_put_code((stream_hc_state *)ss, q, cp);
  93.             continue;
  94.         }
  95.         /* Check whether we need to put out a zero run. */
  96.         if ( zeros > 0 )
  97.         {    --p;
  98.             cp = (zeros == 1 ? &encode[0] :
  99.                   &encode[zeros - 2 + zero_runs]);
  100.             zeros = 0;
  101.             hc_put_code((stream_hc_state *)ss, q, cp);
  102.             continue;
  103.         }
  104.         cp = &encode[value];
  105.         hc_put_code((stream_hc_state *)ss, q, cp);
  106.       }
  107.     if ( q >= wlimit )
  108.       status = 1;
  109.     wlimit = pw->limit;
  110.     if ( last && status == 0 )
  111.       {    if ( zeros > 0 )
  112.           {    /* Put out a final run of zeros. */
  113.             const hce_code *cp = (zeros == 1 ? &encode[0] :
  114.                           &encode[zeros - 2 + zero_runs]);
  115.             if ( !hce_bits_available(cp->code_length) )
  116.               status = 1;
  117.             else
  118.               {    hc_put_code((stream_hc_state *)ss, q, cp);
  119.                 zeros = 0;
  120.               }
  121.           }
  122.         if ( ss->EndOfData )
  123.           {    /* Put out the EOD code if we have room. */
  124.             const hce_code *cp = &encode[num_values - 1];
  125.             if ( !hce_bits_available(cp->code_length) )
  126.               status = 1;
  127.             else
  128.               hc_put_code((stream_hc_state *)ss, q, cp);
  129.           }
  130.         else
  131.           {    if ( q >= wlimit )
  132.               status = 1;
  133.           }
  134.         if ( !status )
  135.           {    q = hc_put_last_bits((stream_hc_state *)ss, q);
  136.             goto ns;
  137.           }
  138.       }
  139.     hce_store_state();
  140. ns:    pr->ptr = p;
  141.     pw->ptr = q;
  142.     ss->zeros = zeros;
  143.     return (p == rlimit ? 0 : 1);
  144. }
  145.  
  146. #undef ss
  147.  
  148. /* Stream template */
  149. const stream_template s_BHCE_template =
  150. {    &st_BHCE_state, s_BHCE_init, s_BHCE_process,
  151.     1, hc_bits_size >> 3, s_BHCE_release, NULL, s_BHCE_reinit
  152. };
  153.  
  154. /* ------ BoundedHuffmanDecode ------ */
  155.  
  156. private_st_BHCD_state();
  157.  
  158. #define ss ((stream_BHCD_state *)st)
  159.  
  160. #define hcd_initial_bits 7        /* arbitrary, >= 1 and <= 8 */
  161.  
  162. /* Initialize BoundedHuffmanDecode filter. */
  163. private int
  164. s_BHCD_reinit(stream_state *st)
  165. {    ss->decode.count = ss->definition.num_values;
  166.     s_bhcd_init_inline(ss);
  167.     return 0;
  168. }
  169. private int
  170. s_BHCD_init(register stream_state *st)
  171. {    uint initial_bits = ss->decode.initial_bits =
  172.       min(hcd_initial_bits, ss->definition.num_counts);
  173.     uint dsize = hc_sizeof_decoding(&ss->definition, initial_bits);
  174.     hcd_code *decode = ss->decode.codes =
  175.       (hcd_code *)gs_alloc_byte_array(st->memory, dsize,
  176.                       sizeof(hcd_code), "BHCD decode");
  177.     if ( decode == 0 )
  178.       return ERRC;            /****** WRONG ******/
  179.     hc_make_decoding(decode, &ss->definition, initial_bits);
  180.     return s_BHCD_reinit(st);
  181. }
  182.  
  183. /* Release the filter. */
  184. private void
  185. s_BHCD_release(stream_state *st)
  186. {    gs_free_object(st->memory, ss->decode.codes, "BHCD decode");
  187. }
  188.  
  189. /* Process a buffer. */
  190. private int
  191. s_BHCD_process(stream_state *st, stream_cursor_read *pr,
  192.   stream_cursor_write *pw, bool last)
  193. {    bhcd_declare_state;
  194.     byte *q = pw->ptr;
  195.     byte *wlimit = pw->limit;
  196.     const hcd_code *decode = ss->decode.codes;
  197.     uint initial_bits = ss->decode.initial_bits;
  198.     uint zero_runs = ss->EncodeZeroRuns;
  199.     int status = 0;
  200.     int eod = (ss->EndOfData ? ss->definition.num_values - 1 : -1);
  201.  
  202.     bhcd_load_state();
  203. z:    for ( ; zeros > 0; --zeros )
  204.     {    if ( q >= wlimit )
  205.         {    status = 1;
  206.             goto out;
  207.         }
  208.         *++q = 0;
  209.     }
  210.     for ( ; ; )
  211.       {    const hcd_code *cp;
  212.         int clen;
  213.         hcd_ensure_bits(initial_bits, x1);
  214.         cp = &decode[hcd_peek_var_bits(initial_bits)];
  215. w1:        if ( q >= wlimit )
  216.           {    status = 1;
  217.             break;
  218.           }
  219.         if ( (clen = cp->code_length) > initial_bits )
  220.           {    if ( !hcd_bits_available(clen) )
  221.               {    /* We don't have enough bits for */
  222.                 /* all possible codes that begin this way, */
  223.                 /* but we might have enough for */
  224.                 /* the next code. */
  225.                 /****** NOT IMPLEMENTED YET ******/
  226.                 break;
  227.               }
  228.             clen -= initial_bits;
  229.             hcd_skip_bits(initial_bits);
  230.             hcd_ensure_bits(clen, out);    /* can't exit */
  231.             cp = &decode[cp->value + hcd_peek_var_bits(clen)];
  232.             hcd_skip_bits(cp->code_length);
  233.           }
  234.         else
  235.           {    hcd_skip_bits(clen);
  236.           }
  237.         if ( cp->value >= zero_runs )
  238.         {    if ( cp->value == eod )
  239.               {    status = EOFC;
  240.                 goto out;
  241.               }
  242.             /* This code represents a run of zeros, */
  243.             /* not a single output value. */
  244.             zeros = cp->value - zero_runs + 2;
  245.             goto z;
  246.         }
  247.         *++q = cp->value;
  248.         continue;
  249.             /* We don't have enough bits for all possible */
  250.             /* codes, but we might have enough for */
  251.             /* the next code. */
  252. x1:        cp = &decode[(bits & ((1 << bits_left) - 1)) <<
  253.                  (initial_bits - bits_left)];
  254.         if ( (clen = cp->code_length) <= bits_left )
  255.           goto w1;
  256.         break;
  257.       }
  258. out:    bhcd_store_state();
  259.     pw->ptr = q;
  260.     return status;
  261. }
  262.  
  263. #undef ss
  264.  
  265. /* Stream template */
  266. const stream_template s_BHCD_template =
  267. {    &st_BHCD_state, s_BHCD_init, s_BHCD_process, 1, 1, s_BHCD_release,
  268.     NULL, s_BHCD_reinit
  269. };
  270.